home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / scriptdl.zip / SCRIPTDL.DOC < prev    next >
Text File  |  1992-02-12  |  2KB  |  64 lines

  1. SCRIPTDL.exe - convert from script file format to command delimited
  2.                text file.  Version 1.0   02-12-92
  3.  
  4. Scriptdl.exe is a fairly simple-minded program that I use to convert my
  5. PCBoard version 14.5a NEWASK "answer" file into a comma delimited file for 
  6. later input to a database program.  
  7.  
  8. To use the program, type:
  9.  
  10.    scriptdl  answer_file_name   output_file_name
  11.  
  12. on the command line, or type scriptdl and press ENTER to see a usage
  13. reminder.
  14.  
  15.  
  16.  
  17. It converts a file of records that looks like this:
  18.  
  19. *************************************************************
  20. From: SOME USER, 02-12-92 (18:00) Node 3 Sec 10 Exp 02-20-92
  21. Q: Your Address?
  22. A: 123 E. Nowhere
  23. Q: City, State, Zip?
  24. A: Podunk, KS, 12345
  25. Q: Phone ?
  26. A: 555-1212
  27.  
  28.  
  29. To a file that looks like this:
  30.  
  31. "SOME USER", "02-12-92", "123 E. Nowhere", "Podunk, KS, 12345", "555-1212"
  32.  
  33.  
  34.  
  35. Some notes:
  36.  
  37. The user name and date from the "FROM:" line are always the first two fields.
  38. All "A:" lines are turned into an output field in the output file.
  39. All other lines are ignored.
  40. The input file is only READ from.
  41. The output file is always APPENEDED to.
  42.  
  43.  
  44. Unlike other programs, I am not going to go into an entire chapter on how
  45. this program is guaranteed to basically do nothing, and if the "nothing that
  46. it does" happens to destroy your hard disk, that is your own tough luck.
  47.  
  48. This program works for me on my system.  It does what I need it to do.
  49. If it doesn't work for you on your system - please let me know and I will 
  50. attempt to fix it.  Just remember what you paid for it.......
  51.  
  52.                    Robert Briggs
  53.  
  54.                    SYSOP of Bob and Kathy's BBS
  55.                    P.O. Box 571241
  56.                    Murray, UT   84157-1241
  57.  
  58.                    (801) 262-3822 (USR HST Dual Standard)
  59.  
  60.                    FidoNet: 1:311/11
  61.  
  62.  
  63.  
  64.